1   /************************************************************
2   *                     Copyright                            *
3   * Portions of this software are Copyright (c) 1993 - 2002, *
4   * Chad Z. Hower (Kudzu) and the Indy Pit Crew              *
5   *  - http://www.nevrona.com/Indy/                          *
6   ************************************************************/
7   package org.indy.http;
8   
9   /***
10   * DOCUMENT ME!
11   *
12   * @version $Revision$
13   * @author $author$
14   */
15  final class IdHTTPConnectionType {
16    /***
17     *  Description of the Field
18     */
19    public final static IdHTTPConnectionType NORMAL = new IdHTTPConnectionType();
20  
21    /***
22     *  Description of the Field
23     */
24    public final static IdHTTPConnectionType SSL = new IdHTTPConnectionType();
25  
26    /***
27     *  Description of the Field
28     */
29    public final static IdHTTPConnectionType PROXY = new IdHTTPConnectionType();
30  
31    /***
32     *  Description of the Field
33     */
34    public final static IdHTTPConnectionType PROXY_SSL = 
35        new IdHTTPConnectionType();
36  
37    private IdHTTPConnectionType() {
38    }
39  }
This page was automatically generated by Maven